d2ce4f4c81bf4ee8a7b7e929851dec58f32db93d,modules/jaxp-xml-parser/geotk-jaxp-gml/src/test/java/org/geotoolkit/feature/xml/XmlFeatureTypeTest.java,XmlFeatureTypeTest,testReadWfsFeatureType,#,124
Before Change
ftb.setName(ns,"quadrige");
ftb.setSuperTypes(ABSTRACTFEATURETYPE_31);
ftb.addAttribute(Geometry.class).setName(ns, "msGeometry").setMinimumOccurs(0).setMaximumOccurs(1).addCharacteristic(GMLConvention.NILLABLE_CHARACTERISTIC).setDefaultValue(Boolean.FALSE);
ftb.addAttribute(String.class).setName(ns, "C_SIEPT38").setMinimumOccurs(1).setMaximumOccurs(1).addCharacteristic(GMLConvention.NILLABLE_CHARACTERISTIC).setDefaultValue(Boolean.FALSE);
ftb.addAttribute(String.class).setName(ns, "L_SIEPT").setMinimumOccurs(1).setMaximumOccurs(1).addCharacteristic(GMLConvention.NILLABLE_CHARACTERISTIC).setDefaultValue(Boolean.FALSE);
final FeatureType wfsType = ftb.build();
After Change
ftb.setName(ns,"quadrige");
ftb.setSuperTypes(GMLConvention.ABSTRACTFEATURETYPE_31);
ftb.addAttribute(Geometry.class).setName(ns, "msGeometry").setMinimumOccurs(0).setMaximumOccurs(1);
ftb.addAttribute(String.class).setName(ns, "C_SIEPT38").setMinimumOccurs(1).setMaximumOccurs(1);
ftb.addAttribute(String.class).setName(ns, "L_SIEPT").setMinimumOccurs(1).setMaximumOccurs(1);
final FeatureType wfsType = ftb.build();